ab4f5f6469c9d1e378010cfd0054f848eabbf308,tests/test_apps/schemachange/src/schemachange/SchemaChangeClient.java,SchemaChangeClient,verifyAndGetSchemaVersion,#,361

Before Change


     * is the right one.
     */
    private int verifyAndGetSchemaVersion() {
        VoltTable result = callROProcedureWithRetry("@Statistics", "TABLE", 0).getResults()[0];
        result.resetRowPosition();
        int version = -1;
        while (result.advanceRow()) {

After Change


     * is the right one.
     */
    private int verifyAndGetSchemaVersion() {
        ClientResponse cr = callROProcedureWithRetry("@Statistics", "TABLE", 0);
        assert(cr.getStatus() == ClientResponse.SUCCESS);
        VoltTable result = cr.getResults()[0];
        result.resetRowPosition();
        int version = -1;
        while (result.advanceRow()) {